'Declaration
Overloads Function InvokeMember( _ ByVal methodName As String, _ ByVal parameters() As Object _ ) As Object
'Usage
Dim instance As IWebElement Dim methodName As String Dim parameters() As Object Dim value As Object value = instance.InvokeMember(methodName, parameters)
object InvokeMember( string methodName, object[] parameters )
Parameters
- methodName
- The name of the property or method to invoke.
- parameters
- Input parameters.
Return Value
The element returned by the function, represented as an Object. If this Object is another HTML element, and you have a reference to the unmanaged MSHTML library added to your project, you can cast it to its appropriate unmanaged interface.